Configure Icon

All Planes Off All

Overview

The All Planes Off All command provides a fast and reliable way to turn off (make invisible) all work planes in every component of your active Inventor assembly. This is especially useful for decluttering your workspace, improving performance, and focusing on the geometry of your assembly without the distraction of visible planes.

When executed, the command iterates through all components in the assembly and sets the visibility of every work plane to off. If your document includes the parameter ShowPlanes, it will be set to False. This parameter is used throughout Assembly Tools components to trigger additional logic when planes are toggled, allowing for advanced automation and customization.

Most users will not need to manually toggle plane visibility after running this command, as it ensures all work planes are hidden. However, if you have specific planes that should always remain visible, you can add a rule to your component to turn those planes back on as needed. For example, if you have a work plane named “never turn on,” you can set its visibility in your rule:
ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

All Planes Off All is ideal for assemblies with many components, where manual toggling would be time-consuming. It helps maintain a clean visual environment and supports automated workflows that depend on the ShowPlanes parameter.

How It Works

  1. Iterates through all components in the active assembly.
  2. Sets the visibility of every work plane to off (invisible).
  3. If the ShowPlanes parameter exists, it is set to False.
  4. Custom rules in components can override the default behavior for specific planes.

Usage Instructions

  1. Open the target assembly or component.
  2. Click the All Planes Off All button in the Configure panel.
  3. All work planes in all components will be hidden.
  4. If you want to keep a specific plane visible, add a rule to your component to set its visibility as needed.

Troubleshooting

  1. If some planes remain visible, check for custom rules in your components that may override the default behavior.
  2. Ensure the ShowPlanes parameter exists if you want to use it for additional logic.
  3. Review your component rules for any logic that may affect plane visibility.

Examples

  1. Hide all planes in an assembly: Run the command to hide all work planes in every component.
  2. Override visibility for a specific plane: If you have a work plane named “never turn on,” you can keep it hidden by adding a rule such as:
    ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

Related Commands

  1. All Planes Off All Nested
  2. All Planes Off
  3. Planes Toggle
  4. Configure

Assembly Tool Suites